home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Chat & Communication / Digsby build 37 / digsby_setup.exe / lib / compiler / syntax.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-13  |  1KB  |  31 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.5)
  3.  
  4. from compiler import ast, walk
  5.  
  6. def check(tree, multi = None):
  7.     v = SyntaxErrorChecker(multi)
  8.     walk(tree, v)
  9.     return v.errors
  10.  
  11.  
  12. class SyntaxErrorChecker:
  13.     
  14.     def __init__(self, multi = None):
  15.         self.multi = multi
  16.         self.errors = 0
  17.  
  18.     
  19.     def error(self, node, msg):
  20.         self.errors = self.errors + 1
  21.         if self.multi is not None:
  22.             print '%s:%s: %s' % (node.filename, node.lineno, msg)
  23.         else:
  24.             raise SyntaxError, '%s (%s:%s)' % (msg, node.filename, node.lineno)
  25.  
  26.     
  27.     def visitAssign(self, node):
  28.         pass
  29.  
  30.  
  31.